home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / x / gui / xfract.lha / xfract / Makefile < prev    next >
Encoding:
Makefile  |  1990-06-27  |  1.2 KB  |  56 lines

  1. ###############################################################################
  2. #*
  3. #*   Copyright (c) Digital Equipment Corporation 1990  All rights reserved.
  4. #*   Copyright is claimed in the computer program and user interface thereof.
  5. #*
  6. #*   Digital Equipment Corporation cannot accept any responsibility for
  7. #*   use, misuse, or abuse of this software.
  8. #*
  9. ###############################################################################
  10.  
  11. ICONFILE= -DICONFILE="\"/ue/staff/bernie/src/X/fract/mntn.btm\""
  12. BCKGFILE= -DBCKGRND="\"/ue/staff/bernie/src/X/fract/bg.btm\""
  13. CFLAGS= -O ${ICONFILE} ${BCKGFILE}
  14.  
  15. STRIP=touch
  16.  
  17. HFILES= xpt.h xlmntn.h xmntn.h
  18.  
  19. CMNO=    xpt.o gen_mntndata.o cmn_mntncode.o
  20. CMNC=    xpt.c gen_mntndata.c cmn_mntncode.c
  21. XLO=    xlmntn.o
  22. XLC=    xlmntn.c
  23. XO=    xmntn.o
  24. XC=    xmntn.c
  25.  
  26. BTMS=    bg.btm mntn.btm
  27.  
  28. SHAR= xmntns.sh
  29.  
  30. PROGS = xmntn xlmntn
  31.  
  32. X11=    -lX11
  33.  
  34. all:    ${PROGS}
  35.  
  36. xmntn:    ${CMNO} ${XO}
  37.     cc -O -o $@ ${CMNO} ${XO} ${X11} -lm
  38.     @${STRIP} $@
  39.     @ls -l $@
  40.  
  41. xlmntn:    ${CMNO} ${XLO}
  42.     cc -O -o $@ ${CMNO} ${XLO} ${X11} -lm
  43.     @${STRIP} $@
  44.     @ls -l $@
  45.  
  46. xpt.o:        xpt.h
  47. xmntn.o:    xmntn.h
  48. xlmntn.o:    xlmntn.h
  49.  
  50. clean:
  51.     rm -f *.o ${PROGS} core
  52.  
  53. shar:
  54.     shar README Makefile ${HFILES} ${CMNC} ${XC} ${XLC} ${BTMS} > ${SHAR}
  55.     @ls -l ${SHAR}
  56.